home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{C932BA88-4374-101B-A56C-00AA003668DC}#1.1#0"; "MSMASK32.OCX"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 1455
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 2595
- LinkTopic = "Form1"
- ScaleHeight = 1455
- ScaleWidth = 2595
- StartUpPosition = 3 'Windows Default
- Begin VB.TextBox Text1
- Height = 495
- Left = 120
- TabIndex = 1
- Text = "Text1"
- Top = 720
- Width = 2295
- End
- Begin MSMask.MaskEdBox MaskEdBox1
- Height = 495
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 2295
- _ExtentX = 4048
- _ExtentY = 873
- _Version = 393216
- MaxLength = 14
- Mask = "(###) ###-####"
- PromptChar = "_"
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub MaskEdBox1_Change()
- Text1.Text = MaskEdBox1.Text
- End Sub
-